std::basic_stringstream::swap
From Cppreference
< cpp | io | basic stringstream
| C++ Standard Library | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||
| Input/output library | ||||||||||||||||||||
| std::basic_stringstream | ||||||||||||||||||||
| ||||||||||||||||||||
| void swap( basic_stringstream& other );
| (C++0x) | |
Exchanges the state of the stream with those of other.
This is done by calling basic_istream<CharT, Traits>::swap(other) and rdbuf->swap(other->rdbuf).
Contents |
Parameters
| other | - | stream to exchange the state with |
Return value
(none)
Example
| This section is incomplete |
See also
| moves the string stream (public member function) | ||